home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-06-30 | 3.5 KB | 116 lines |
- /*
- * @(#)BasicTextAreaUI.java 1.52 98/04/09
- *
- * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the confidential and proprietary information of Sun
- * Microsystems, Inc. ("Confidential Information"). You shall not
- * disclose such Confidential Information and shall use it only in
- * accordance with the terms of the license agreement you entered into
- * with Sun.
- *
- * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
- * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
- * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
- * THIS SOFTWARE OR ITS DERIVATIVES.
- *
- */
- package com.sun.java.swing.plaf.basic;
-
- import java.beans.*;
- import java.awt.*;
- import java.awt.event.KeyEvent;
- import java.awt.event.InputEvent;
- import com.sun.java.swing.*;
- import com.sun.java.swing.text.*;
- import com.sun.java.swing.plaf.*;
-
- /**
- * Provides the look and feel for a plain text editor. In this
- * implementation the default UI is extended to act as a simple
- * view factory.
- * <p>
- * Warning: serialized objects of this class will not be compatible with
- * future swing releases. The current serialization support is appropriate
- * for short term storage or RMI between Swing1.0 applications. It will
- * not be possible to load serialized Swing1.0 objects with future releases
- * of Swing. The JDK1.2 release of Swing will be the compatibility
- * baseline for the serialized form of Swing objects.
- *
- * @author Timothy Prinzing
- * @version 1.52 04/09/98
- */
- public class BasicTextAreaUI extends BasicTextUI {
-
- /**
- * Creates a UI for a JTextArea.
- *
- * @param ta a text area
- * @return the UI
- */
- public static ComponentUI createUI(JComponent ta) {
- return new BasicTextAreaUI();
- }
-
- /**
- * Constructs a new BasicTextAreaUI object.
- */
- public BasicTextAreaUI() {
- super();
- }
-
- /**
- * Fetches the name used as a key to look up properties through the
- * UIManager. This is used as a prefix to all the standard
- * text properties.
- *
- * @return the name ("TextArea")
- */
- protected String getPropertyPrefix() {
- return "TextArea";
- }
-
- /**
- * This method gets called when a bound property is changed
- * on the associated JTextComponent. This is a hook
- * which UI implementations may change to reflect how the
- * UI displays bound properties of JTextComponent subclasses.
- * This is implemented to rebuild the View when the
- * <em>WrapLine</em> or the <em>WrapStyleWord</em> property changes.
- *
- * @param evt the property change event
- */
- protected void propertyChange(PropertyChangeEvent evt) {
- if (evt.getPropertyName().equals("LineWrap") ||
- evt.getPropertyName().equals("WrapStyleWord")) {
- // rebuild the view
- modelChanged();
- }
- }
-
- /**
- * Creates the view for an element. Returns a WrappedPlainView or
- * PlainView.
- *
- * @param elem the element
- * @return the view
- */
- public View create(Element elem) {
- JTextComponent c = getComponent();
- if (c instanceof JTextArea) {
- JTextArea area = (JTextArea) c;
- View v;
- if (area.getLineWrap()) {
- v = new WrappedPlainView(elem, area.getWrapStyleWord());
- } else {
- v = new PlainView(elem);
- }
- return v;
- }
- return null;
- }
-
- }
-